home *** CD-ROM | disk | FTP | other *** search
- println("Rex++ Commands");
- println("----------------");
- println("");
- println("CLS(color) - Clears screen to color");
- println("PLOT(X,Y) - Plots a pixel");
- println("RANDOMIZE - Seeds random generator");
- println("RAND(Min, Max) - Random # in min,max");
- println("SETCOLOR(color) _ Set drawing color");
- println("SETCURSOR(X,Y) - Set drawing cursor");
- println("MAXX - Returns max x coord");
- println("MAXY - Returns max y coord");
- println("LOOP(min to max) - Loop statement");
- println("ENDL - ends a loop");
- println("IF(expres) - IF statement");
- println("ENDIF - ends a IF statement");
- println("DELAY(ms) - Delay in milliseconds");
- println("VAR - Define number/string");
- println("PRINT(expres) - Outputs number/string");
- println("PRINTLN(expres) - Same as print /w LF");
-
-
-
-
-
-
-
-
-
-
-
-
-